home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / flxkey.exe / DAT2OBJ.BAT < prev    next >
DOS Batch File  |  1993-02-21  |  613b  |  19 lines

  1. @ECHO OFF
  2. REM
  3. REM This batch-file takes the encryption-code data generated by the
  4. REM RANDCODE.PAS program, and converts it from "binary" file format
  5. REM "object" file format using the Borland utility BINOBJ.EXE.
  6. REM This will allow the encryption-codes to be linked directly into
  7. REM a compiled .EXE's code-segment, effectively hiding them in your
  8. REM program.
  9. ECHO  
  10. ECHO Converting binary ECODE1.DAT file to ECODE1.OBJ file
  11. ECHO  
  12. BINOBJ ECODE1.DAT ECODE1.OBJ Ecode1Data
  13. ECHO  
  14. ECHO Converting binary ECODE2.DAT file to ECODE2.OBJ file
  15. ECHO  
  16. BINOBJ ECODE2.DAT ECODE2.OBJ Ecode2Data
  17. ECHO  
  18.  
  19.